from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83282

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-02-15
chromium - 145.0.7632.75
Ebuild name:

www-client/chromium-145.0.7632.75

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-15

etherape - 0.9.21
Ebuild name:

net-analyzer/etherape-0.9.21

Description

A graphical network monitor for Unix modeled after etherman

Added to portage

2026-02-15

filelock - 3.24.0
Ebuild name:

dev-python/filelock-3.24.0

Description

A platform independent file lock for Python

Added to portage

2026-02-15

gcc - 15.2.1_p20260214
Ebuild name:

sys-devel/gcc-15.2.1_p20260214

Description

The GNU Compiler Collection

Added to portage

2026-02-15

gentoo-sources - 6.12.71
Ebuild name:

sys-kernel/gentoo-sources-6.12.71

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-15

huggingface_hub - 0.36.2-r1
Ebuild name:

sci-ml/huggingface_hub-0.36.2-r1

Description

a client library to interact with the Hugging Face Hub

Added to portage

2026-02-15

huggingface_hub - 1.1.7
Ebuild name:

sci-ml/huggingface_hub-1.1.7

Description

a client library to interact with the Hugging Face Hub

Added to portage

2026-02-15

huggingface_hub - 1.2.4
Ebuild name:

sci-ml/huggingface_hub-1.2.4

Description

a client library to interact with the Hugging Face Hub

Added to portage

2026-02-15

indilib - 2.1.9
Ebuild name:

sci-libs/indilib-2.1.9

Description

INDI Astronomical Control Protocol library

Added to portage

2026-02-15

libssh - 0.11.4
Ebuild name:

net-libs/libssh-0.11.4

Description

Access a working SSH implementation by means of a library

Added to portage

2026-02-15

nh3 - 0.3.3
Ebuild name:

dev-python/nh3-0.3.3

Description

Ammonia HTML sanitizer Python binding

Added to portage

2026-02-15

nuitka - 4.0.1
Ebuild name:

dev-python/nuitka-4.0.1

Description

Python to native compiler

Added to portage

2026-02-15

openapi-spec-validator - 0.8.0_beta2
Ebuild name:

dev-python/openapi-spec-validator-0.8.0_beta2

Description

OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0 spec valida

Added to portage

2026-02-15

pass - 2.0_p20260214
Ebuild name:

app-emacs/pass-2.0_p20260214

Description

Major mode for password-store

Added to portage

2026-02-15

platformdirs - 4.9.1
Ebuild name:

dev-python/platformdirs-4.9.1

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2026-02-15

pmacct - 1.7.9
Ebuild name:

net-analyzer/pmacct-1.7.9

Description

A network tool to gather IP traffic information

Added to portage

2026-02-15

pycxx - 7.2.1
Ebuild name:

dev-python/pycxx-7.2.1

Description

Set of facilities to extend Python with C++

Added to portage

2026-02-15

pytest-django - 4.12.0
Ebuild name:

dev-python/pytest-django-4.12.0

Description

A Django plugin for pytest

Added to portage

2026-02-15

pytest-httpserver - 1.1.5
Ebuild name:

dev-python/pytest-httpserver-1.1.5

Description

HTTP server for pytest to test HTTP clients

Added to portage

2026-02-15

qcoro - 0.13.0
Ebuild name:

dev-libs/qcoro-0.13.0

Description

C++ Coroutine Library for Qt

Added to portage

2026-02-15

trio - 0.33.0
Ebuild name:

dev-python/trio-0.33.0

Description

Python library for async concurrency and I/O

Added to portage

2026-02-15

typeguard - 4.5.0
Ebuild name:

dev-python/typeguard-4.5.0

Description

Run-time type checker for Python

Added to portage

2026-02-15

vanilla-sources - 6.12.71
Ebuild name:

sys-kernel/vanilla-sources-6.12.71

Description

Full sources for the Linux kernel

Added to portage

2026-02-15

2026-02-14
attica - 6.23.0
Ebuild name:

kde-frameworks/attica-6.23.0

Description

Framework providing access to Open Collaboration Services

Added to portage

2026-02-14

authlib - 1.6.8
Ebuild name:

dev-python/authlib-1.6.8

Description

A Python library in building OAuth and OpenID Connect servers and clients

Added to portage

2026-02-14

automx2 - 2026.0
Ebuild name:

net-mail/automx2-2026.0

Description

Mail User Agent (email client) configuration made easy

Added to portage

2026-02-14

avogadro2 - 1.103.0
Ebuild name:

sci-chemistry/avogadro2-1.103.0

Description

Advanced molecule editor and visualizer 2

Added to portage

2026-02-14

avogadrolibs - 1.103.0
Ebuild name:

sci-libs/avogadrolibs-1.103.0

Description

Advanced molecule editor and visualizer 2 - libraries

Added to portage

2026-02-14

awscli - 1.44.39
Ebuild name:

app-admin/awscli-1.44.39

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-14

baloo - 6.23.0
Ebuild name:

kde-frameworks/baloo-6.23.0

Description

Framework for searching and managing metadata

Added to portage

2026-02-14

bluez-qt - 6.23.0
Ebuild name:

kde-frameworks/bluez-qt-6.23.0

Description

Qt wrapper for Bluez 5 DBus API

Added to portage

2026-02-14

boto3 - 1.42.49
Ebuild name:

dev-python/boto3-1.42.49

Description

The AWS SDK for Python

Added to portage

2026-02-14

botocore - 1.42.49
Ebuild name:

dev-python/botocore-1.42.49

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-14

breeze-icons - 6.23.0
Ebuild name:

kde-frameworks/breeze-icons-6.23.0

Description

Breeze SVG icon theme

Added to portage

2026-02-14

btrfs-progs - 6.19
Ebuild name:

sys-fs/btrfs-progs-6.19

Description

Btrfs filesystem utilities

Added to portage

2026-02-14

btrfsutil - 6.19
Ebuild name:

dev-python/btrfsutil-6.19

Description

Library for managing Btrfs filesystems

Added to portage

2026-02-14

ccache - 4.12.3
Ebuild name:

dev-util/ccache-4.12.3

Description

Fast compiler cache

Added to portage

2026-02-14

chrome-binary-plugins - 145.0.7632.75
Ebuild name:

www-plugins/chrome-binary-plugins-145.0.7632.75

Description

Binary plugins from Google Chrome for use in Chromi

Added to portage

2026-02-14

chromedriver-bin - 145.0.7632.75
Ebuild name:

www-apps/chromedriver-bin-145.0.7632.75

Description

WebDriver for Chrome

Added to portage

2026-02-14

clang - 23.0.0_pre20260214
Ebuild name:

dev-python/clang-23.0.0_pre20260214

Description

Python bindings for llvm-core/clang

Added to portage

2026-02-14

clang - 23.0.0_pre20260214
Ebuild name:

llvm-core/clang-23.0.0_pre20260214

Description

C language family frontend for LLVM

Added to portage

2026-02-14

clang-common - 23.0.0_pre20260214
Ebuild name:

llvm-core/clang-common-23.0.0_pre20260214

Description

Common files shared between multiple slots of clang

Added to portage

2026-02-14

clang-crossdev-wrappers - 22
Ebuild name:

sys-devel/clang-crossdev-wrappers-22

Description

Symlinks to a Clang crosscompiler

Added to portage

2026-02-14

clang-crossdev-wrappers - 23
Ebuild name:

sys-devel/clang-crossdev-wrappers-23

Description

Symlinks to a Clang crosscompiler

Added to portage

2026-02-14

compiler-rt - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/compiler-rt-23.0.0_pre20260214

Description

Compiler runtime library for clang (built-in part)

Added to portage

2026-02-14

compiler-rt-sanitizers - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/compiler-rt-sanitizers-23.0.0_pre20260214

Description

Compiler runtime libraries for clang (sanit

Added to portage

2026-02-14

dist-kernel - 6.12.71
Ebuild name:

virtual/dist-kernel-6.12.71

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-14

elinks - 0.19.1
Ebuild name:

www-client/elinks-0.19.1

Description

Advanced and well-established text-mode web browser

Added to portage

2026-02-14

exaile - 4.2.1
Ebuild name:

media-sound/exaile-4.2.1

Description

GTK+ based media player aiming to be similar to Amarok

Added to portage

2026-02-14

extra-cmake-modules - 6.23.0
Ebuild name:

kde-frameworks/extra-cmake-modules-6.23.0

Description

Extra modules and scripts for CMake

Added to portage

2026-02-14

filelock - 3.23.0
Ebuild name:

dev-python/filelock-3.23.0

Description

A platform independent file lock for Python

Added to portage

2026-02-14

flang - 23.0.0_pre20260214
Ebuild name:

llvm-core/flang-23.0.0_pre20260214

Description

LLVM's Fortran frontend

Added to portage

2026-02-14

flang-rt - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/flang-rt-23.0.0_pre20260214

Description

LLVM's Fortran runtime

Added to portage

2026-02-14

frameworkintegration - 6.23.0
Ebuild name:

kde-frameworks/frameworkintegration-6.23.0

Description

Framework for integrating Qt applications with KDE Plasm

Added to portage

2026-02-14

gcc - 14.3.1_p20260213
Ebuild name:

sys-devel/gcc-14.3.1_p20260213

Description

The GNU Compiler Collection

Added to portage

2026-02-14

gentoo-kernel - 6.12.71
Ebuild name:

sys-kernel/gentoo-kernel-6.12.71

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-14

gentoo-kernel-bin - 6.12.71
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.71

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-14

gnupg - 2.5.17-r2
Ebuild name:

app-crypt/gnupg-2.5.17-r2

Description

The GNU Privacy Guard, a GPL OpenPGP implementation

Added to portage

2026-02-14

gobject-introspection - 1.82.0-r3
Ebuild name:

dev-libs/gobject-introspection-1.82.0-r3

Description

Introspection system for GObject-based libraries

Added to portage

2026-02-14

gobject-introspection - 1.84.0-r2
Ebuild name:

dev-libs/gobject-introspection-1.84.0-r2

Description

Introspection system for GObject-based libraries

Added to portage

2026-02-14

google-chrome - 145.0.7632.75
Ebuild name:

www-client/google-chrome-145.0.7632.75

Description

The web browser from Google

Added to portage

2026-02-14

gtksourceview - 5.18.0
Ebuild name:

gui-libs/gtksourceview-5.18.0

Description

A text widget implementing syntax highlighting and other features

Added to portage

2026-02-14

gucharmap - 17.0.1
Ebuild name:

gnome-extra/gucharmap-17.0.1

Description

Unicode character map viewer and library

Added to portage

2026-02-14

gunicorn - 25.1.0
Ebuild name:

www-servers/gunicorn-25.1.0

Description

A WSGI HTTP Server for UNIX

Added to portage

2026-02-14

inline-snapshot - 0.32.0
Ebuild name:

dev-python/inline-snapshot-0.32.0

Description

Create and update inline snapshots in your Python tests

Added to portage

2026-02-14

jsonschema-path - 0.4.0_beta2
Ebuild name:

dev-python/jsonschema-path-0.4.0_beta2

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-02-14

kapidox - 6.23.0
Ebuild name:

kde-frameworks/kapidox-6.23.0

Description

Framework for building KDE API documentation in a standard format and

Added to portage

2026-02-14

karchive - 6.23.0
Ebuild name:

kde-frameworks/karchive-6.23.0

Description

Framework for reading, creation, and manipulation of various archive

Added to portage

2026-02-14

kauth - 6.23.0
Ebuild name:

kde-frameworks/kauth-6.23.0

Description

Framework to let applications perform actions as a privileged user

Added to portage

2026-02-14

kbookmarks - 6.23.0
Ebuild name:

kde-frameworks/kbookmarks-6.23.0

Description

Framework for managing bookmarks stored in XBEL format

Added to portage

2026-02-14

kcalendarcore - 6.23.0
Ebuild name:

kde-frameworks/kcalendarcore-6.23.0

Description

Library for interfacing with calendars

Added to portage

2026-02-14

kcmutils - 6.23.0
Ebuild name:

kde-frameworks/kcmutils-6.23.0

Description

Framework to work with KDE System Settings modules

Added to portage

2026-02-14

kcodecs - 6.23.0
Ebuild name:

kde-frameworks/kcodecs-6.23.0

Description

Framework for manipulating strings using various encodings

Added to portage

2026-02-14

kcolorscheme - 6.23.0
Ebuild name:

kde-frameworks/kcolorscheme-6.23.0

Description

Framework for downloading and sharing additional application dat

Added to portage

2026-02-14

kcompletion - 6.23.0
Ebuild name:

kde-frameworks/kcompletion-6.23.0

Description

Framework for common completion tasks such as filename or URL com

Added to portage

2026-02-14

kconfig - 6.23.0
Ebuild name:

kde-frameworks/kconfig-6.23.0

Description

Framework for reading and writing configuration

Added to portage

2026-02-14

kconfigwidgets - 6.23.0
Ebuild name:

kde-frameworks/kconfigwidgets-6.23.0

Description

Framework providing an assortment of configuration-related wid

Added to portage

2026-02-14

kcontacts - 6.23.0
Ebuild name:

kde-frameworks/kcontacts-6.23.0

Description

Address book API based on KDE Frameworks

Added to portage

2026-02-14

kcoreaddons - 6.23.0
Ebuild name:

kde-frameworks/kcoreaddons-6.23.0

Description

Framework for solving common problems such as caching, randomisat

Added to portage

2026-02-14

kcrash - 6.23.0
Ebuild name:

kde-frameworks/kcrash-6.23.0

Description

Framework for intercepting and handling application crashes

Added to portage

2026-02-14

kdav - 6.23.0
Ebuild name:

kde-frameworks/kdav-6.23.0

Description

DAV protocol implemention with KJobs

Added to portage

2026-02-14

kdbusaddons - 6.23.0
Ebuild name:

kde-frameworks/kdbusaddons-6.23.0

Description

Framework for registering services and applications per freedeskt

Added to portage

2026-02-14

kdeclarative - 6.23.0
Ebuild name:

kde-frameworks/kdeclarative-6.23.0

Description

Framework providing integration of QML and KDE work spaces

Added to portage

2026-02-14

kded - 6.23.0
Ebuild name:

kde-frameworks/kded-6.23.0

Description

Central daemon of KDE workspaces

Added to portage

2026-02-14

kdesu - 6.23.0
Ebuild name:

kde-frameworks/kdesu-6.23.0

Description

Framework to handle super user actions

Added to portage

2026-02-14

kdnssd - 6.23.0
Ebuild name:

kde-frameworks/kdnssd-6.23.0

Description

Framework for network service discovery using Zeroconf

Added to portage

2026-02-14

kdoctools - 6.23.0
Ebuild name:

kde-frameworks/kdoctools-6.23.0

Description

Tools to generate documentation in various formats from DocBook fil

Added to portage

2026-02-14

kfilemetadata - 6.23.0
Ebuild name:

kde-frameworks/kfilemetadata-6.23.0

Description

Library for extracting file metadata

Added to portage

2026-02-14

kglobalaccel - 6.23.0
Ebuild name:

kde-frameworks/kglobalaccel-6.23.0

Description

Framework to handle global shortcuts

Added to portage

2026-02-14

kguiaddons - 6.23.0
Ebuild name:

kde-frameworks/kguiaddons-6.23.0

Description

Framework providing assorted high-level user interface components

Added to portage

2026-02-14

kholidays - 6.23.0
Ebuild name:

kde-frameworks/kholidays-6.23.0

Description

Library to determine holidays and other special events for a geogra

Added to portage

2026-02-14

ki18n - 6.23.0
Ebuild name:

kde-frameworks/ki18n-6.23.0

Description

Framework based on Gettext for internationalizing user interface text

Added to portage

2026-02-14

kiconthemes - 6.23.0
Ebuild name:

kde-frameworks/kiconthemes-6.23.0

Description

Framework for icon theming and configuration

Added to portage

2026-02-14

kidletime - 6.23.0
Ebuild name:

kde-frameworks/kidletime-6.23.0

Description

Framework for detection and notification of device idle time

Added to portage

2026-02-14

kimageformats - 6.23.0
Ebuild name:

kde-frameworks/kimageformats-6.23.0

Description

Framework providing additional format plugins for Qt's image I/

Added to portage

2026-02-14

kio - 6.23.0
Ebuild name:

kde-frameworks/kio-6.23.0

Description

Framework providing transparent file and data management

Added to portage

2026-02-14

kirigami - 6.23.0
Ebuild name:

kde-frameworks/kirigami-6.23.0

Description

Lightweight user interface framework for mobile and convergent appli

Added to portage

2026-02-14

kitemmodels - 6.23.0
Ebuild name:

kde-frameworks/kitemmodels-6.23.0

Description

Framework providing data models to help with tasks such as sortin

Added to portage

2026-02-14

kitemviews - 6.23.0
Ebuild name:

kde-frameworks/kitemviews-6.23.0

Description

Framework providing additional widgets for item models

Added to portage

2026-02-14

kjobwidgets - 6.23.0
Ebuild name:

kde-frameworks/kjobwidgets-6.23.0

Description

Framework providing assorted widgets for showing the progress of

Added to portage

2026-02-14

knewstuff - 6.23.0
Ebuild name:

kde-frameworks/knewstuff-6.23.0

Description

Framework for downloading and sharing additional application data

Added to portage

2026-02-14

knotifications - 6.23.0
Ebuild name:

kde-frameworks/knotifications-6.23.0

Description

Framework for notifying the user of an event

Added to portage

2026-02-14

knotifyconfig - 6.23.0
Ebuild name:

kde-frameworks/knotifyconfig-6.23.0

Description

Framework for configuring desktop notifications

Added to portage

2026-02-14

kpackage - 6.23.0
Ebuild name:

kde-frameworks/kpackage-6.23.0

Description

Framework to install and load packages of non binary content

Added to portage

2026-02-14

kparts - 6.23.0
Ebuild name:

kde-frameworks/kparts-6.23.0

Description

Framework providing elaborate user-interface components

Added to portage

2026-02-14

kpeople - 6.23.0
Ebuild name:

kde-frameworks/kpeople-6.23.0

Description

KDE contact person abstraction library

Added to portage

2026-02-14

kplotting - 6.23.0
Ebuild name:

kde-frameworks/kplotting-6.23.0

Description

Framework providing easy data-plotting functions

Added to portage

2026-02-14

kpty - 6.23.0
Ebuild name:

kde-frameworks/kpty-6.23.0

Description

Framework for pseudo terminal devices and running child processes

Added to portage

2026-02-14

kquickcharts - 6.23.0
Ebuild name:

kde-frameworks/kquickcharts-6.23.0

Description

QtQuick plugin providing high-performance charts

Added to portage

2026-02-14

krunner - 6.23.0
Ebuild name:

kde-frameworks/krunner-6.23.0

Description

Framework for providing different actions given a string query

Added to portage

2026-02-14

ksecretd-services - 6.23.0
Ebuild name:

kde-frameworks/ksecretd-services-6.23.0

Description

D-Bus service files for ksecretd kwallet runtime component

Added to portage

2026-02-14

kservice - 6.23.0
Ebuild name:

kde-frameworks/kservice-6.23.0

Description

Advanced plugin and service introspection

Added to portage

2026-02-14

kstatusnotifieritem - 6.23.0
Ebuild name:

kde-frameworks/kstatusnotifieritem-6.23.0

Description

Implementation of Status Notifier Items

Added to portage

2026-02-14

ksvg - 6.23.0
Ebuild name:

kde-frameworks/ksvg-6.23.0

Description

Components for handling SVGs

Added to portage

2026-02-14

ktexteditor - 6.23.0
Ebuild name:

kde-frameworks/ktexteditor-6.23.0

Description

Framework providing a full text editor component

Added to portage

2026-02-14

ktexttemplate - 6.23.0
Ebuild name:

kde-frameworks/ktexttemplate-6.23.0

Description

Library to allow separating the structure of documents from dat

Added to portage

2026-02-14

ktextwidgets - 6.23.0
Ebuild name:

kde-frameworks/ktextwidgets-6.23.0

Description

Framework providing an assortment of widgets for displaying and

Added to portage

2026-02-14

kunitconversion - 6.23.0
Ebuild name:

kde-frameworks/kunitconversion-6.23.0

Description

Framework for converting units

Added to portage

2026-02-14

kuserfeedback - 6.23.0
Ebuild name:

kde-frameworks/kuserfeedback-6.23.0

Description

Framework to collect user feedback for applications via telemet

Added to portage

2026-02-14

kwallet - 6.23.0
Ebuild name:

kde-frameworks/kwallet-6.23.0

Description

Interface to KWallet Framework providing desktop-wide storage for pas

Added to portage

2026-02-14

kwallet-runtime - 6.23.0
Ebuild name:

kde-frameworks/kwallet-runtime-6.23.0

Description

Framework providing desktop-wide storage for passwords

Added to portage

2026-02-14

kwidgetsaddons - 6.23.0
Ebuild name:

kde-frameworks/kwidgetsaddons-6.23.0

Description

An assortment of high-level widgets for common tasks

Added to portage

2026-02-14

kwindowsystem - 6.23.0
Ebuild name:

kde-frameworks/kwindowsystem-6.23.0

Description

Framework providing access to properties and features of the wi

Added to portage

2026-02-14

kxmlgui - 6.23.0
Ebuild name:

kde-frameworks/kxmlgui-6.23.0

Description

Framework for managing menu and toolbar actions in an abstract way

Added to portage

2026-02-14

libclc - 23.0.0_pre20260214
Ebuild name:

llvm-core/libclc-23.0.0_pre20260214

Description

OpenCL C library

Added to portage

2026-02-14

libcxx - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/libcxx-23.0.0_pre20260214

Description

New implementation of the C++ standard library, targeting C

Added to portage

2026-02-14

libcxxabi - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/libcxxabi-23.0.0_pre20260214

Description

Low level support for a standard C++ library

Added to portage

2026-02-14

libgcc - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/libgcc-23.0.0_pre20260214

Description

Compiler runtime library for clang, compatible with libgcc_

Added to portage

2026-02-14

libinput - 1.31.0
Ebuild name:

dev-libs/libinput-1.31.0

Description

Library to handle input devices in Wayland

Added to portage

2026-02-14

libunwind - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/libunwind-23.0.0_pre20260214

Description

C++ runtime stack unwinder from LLVM

Added to portage

2026-02-14

libvpx - 1.15.2-r1
Ebuild name:

media-libs/libvpx-1.15.2-r1

Description

WebM VP8 and VP9 Codec SDK

Added to portage

2026-02-14

links - 2.30-r3
Ebuild name:

www-client/links-2.30-r3

Description

A fast and lightweight web browser running in both graphics and text mode

Added to portage

2026-02-14

lit - 23.0.0_pre20260214
Ebuild name:

dev-python/lit-23.0.0_pre20260214

Description

A stand-alone install of the LLVM suite testing tool

Added to portage

2026-02-14

lld - 23.0.0_pre20260214
Ebuild name:

llvm-core/lld-23.0.0_pre20260214

Description

The LLVM linker (link editor)

Added to portage

2026-02-14

lldb - 23.0.0_pre20260214
Ebuild name:

llvm-core/lldb-23.0.0_pre20260214

Description

The LLVM debugger

Added to portage

2026-02-14

llvm - 23.0.0_pre20260214
Ebuild name:

dev-ml/llvm-23.0.0_pre20260214

Description

OCaml bindings for LLVM

Added to portage

2026-02-14

llvm - 23.0.0_pre20260214
Ebuild name:

llvm-core/llvm-23.0.0_pre20260214

Description

Low Level Virtual Machine

Added to portage

2026-02-14

llvm-common - 23.0.0_pre20260214
Ebuild name:

llvm-core/llvm-common-23.0.0_pre20260214

Description

Common files shared between multiple slots of LLVM

Added to portage

2026-02-14

magic-wormhole-mailbox-server - 0.6.0
Ebuild name:

dev-python/magic-wormhole-mailbox-server-0.6.0

Description

Mailbox server for magic-wormhole

Added to portage

2026-02-14

maturin - 1.12.0
Ebuild name:

dev-util/maturin-1.12.0

Description

Build and publish crates with pyo3, rust-cpython and cffi bindings

Added to portage

2026-02-14

mlir - 23.0.0_pre20260214
Ebuild name:

llvm-core/mlir-23.0.0_pre20260214

Description

Multi-Level Intermediate Representation (library only)

Added to portage

2026-02-14

modemmanager-qt - 6.23.0
Ebuild name:

kde-frameworks/modemmanager-qt-6.23.0

Description

ModemManager bindings for Qt

Added to portage

2026-02-14

networkmanager-qt - 6.23.0
Ebuild name:

kde-frameworks/networkmanager-qt-6.23.0

Description

NetworkManager bindings for Qt

Added to portage

2026-02-14

nix-mode - 1.5.0
Ebuild name:

app-emacs/nix-mode-1.5.0

Description

GNU Emacs major mode for editing Nix expressions

Added to portage

2026-02-14

nss - 3.112.3
Ebuild name:

dev-libs/nss-3.112.3

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-02-14

nss - 3.120.1
Ebuild name:

dev-libs/nss-3.120.1

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-02-14

offload - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/offload-23.0.0_pre20260214

Description

OpenMP offloading support

Added to portage

2026-02-14

openhab-bin - 5.1.2
Ebuild name:

app-misc/openhab-bin-5.1.2

Description

An open-source automation software for your home

Added to portage

2026-02-14

openmp - 23.0.0_pre20260214
Ebuild name:

llvm-runtimes/openmp-23.0.0_pre20260214

Description

OpenMP runtime library for LLVM/clang compiler

Added to portage

2026-02-14

openpgp-keys-sssd - 20260214
Ebuild name:

sec-keys/openpgp-keys-sssd-20260214

Description

OpenPGP key used by sssd

Added to portage

2026-02-14

p11-kit - 0.25.10
Ebuild name:

app-crypt/p11-kit-0.25.10

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-14

p11-kit - 0.25.5
Ebuild name:

app-crypt/p11-kit-0.25.5

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-14

p11-kit - 0.26.2
Ebuild name:

app-crypt/p11-kit-0.26.2

Description

Provides a standard configuration setup for installing PKCS11

Added to portage

2026-02-14

paperkey - 1.6
Ebuild name:

app-crypt/paperkey-1.6

Description

OpenPGP key archiver

Added to portage

2026-02-14

pathable - 0.5.0_beta4
Ebuild name:

dev-python/pathable-0.5.0_beta4

Description

Object-oriented paths

Added to portage

2026-02-14

pdal - 2.10.0
Ebuild name:

sci-libs/pdal-2.10.0

Description

C++ library for translating and manipulating point cloud data

Added to portage

2026-02-14

pdfcrack - 0.20-r1
Ebuild name:

app-crypt/pdfcrack-0.20-r1

Description

Tool for recovering passwords and content from PDF-files

Added to portage

2026-02-14

pdfcrack - 0.21
Ebuild name:

app-crypt/pdfcrack-0.21

Description

Tool for recovering passwords and content from PDF-files

Added to portage

2026-02-14

pesign - 116
Ebuild name:

app-crypt/pesign-116

Description

Tools for manipulating signed PE-COFF binaries

Added to portage

2026-02-14

phonenumbers - 9.0.24
Ebuild name:

dev-python/phonenumbers-9.0.24

Description

Python port of Google's libphonenumber

Added to portage

2026-02-14

platformdirs - 4.8.0
Ebuild name:

dev-python/platformdirs-4.8.0

Description

A small Python module for determining appropriate platform-specific d

Added to portage

2026-02-14

polly - 23.0.0_pre20260214
Ebuild name:

llvm-core/polly-23.0.0_pre20260214

Description

Polyhedral optimizations for LLVM

Added to portage

2026-02-14

portage - 3.0.77-r1
Ebuild name:

sys-apps/portage-3.0.77-r1

Description

The package management and distribution system for Gentoo

Added to portage

2026-02-14

prison - 6.23.0
Ebuild name:

kde-frameworks/prison-6.23.0

Description

QRCode and data matrix barcode library

Added to portage

2026-02-14

purpose - 6.23.0
Ebuild name:

kde-frameworks/purpose-6.23.0

Description

Library for providing abstractions to get the developer's purposes fu

Added to portage

2026-02-14

purpose-kaccounts-services - 6.23.0
Ebuild name:

kde-frameworks/purpose-kaccounts-services-6.23.0

Description

KAccounts generated service files for nextcloud an

Added to portage

2026-02-14

qcheck - 0.91
Ebuild name:

dev-ml/qcheck-0.91

Description

QuickCheck inspired property-based testing for OCaml

Added to portage

2026-02-14

qqc2-desktop-style - 6.23.0
Ebuild name:

kde-frameworks/qqc2-desktop-style-6.23.0

Description

Style for QtQuickControls 2 that uses QWidget's QStyle for

Added to portage

2026-02-14

rdflib - 7.6.0
Ebuild name:

dev-python/rdflib-7.6.0

Description

RDF library containing a triple store and parser/serializer

Added to portage

2026-02-14

rhino - 1.9.0-r1
Ebuild name:

dev-java/rhino-1.9.0-r1

Description

Rhino JavaScript runtime jar, excludes XML, tools, and ScriptEngine wrapper

Added to portage

2026-02-14

roundcube - 1.7_rc4
Ebuild name:

mail-client/roundcube-1.7_rc4

Description

A browser-based multilingual IMAP client with an application-like use

Added to portage

2026-02-14

soapysdrplay - 0.5.2
Ebuild name:

net-wireless/soapysdrplay-0.5.2

Description

Soapy SDR plugin for SDRPlay

Added to portage

2026-02-14

soapysdrplay - 0_p20220120
Ebuild name:

net-wireless/soapysdrplay-0_p20220120

Description

Soapy SDR plugin for SDRPlay

Added to portage

2026-02-14

solid - 6.23.0
Ebuild name:

kde-frameworks/solid-6.23.0

Description

Provider for platform independent hardware discovery, abstraction and m

Added to portage

2026-02-14

sonnet - 6.23.0
Ebuild name:

kde-frameworks/sonnet-6.23.0

Description

Framework for providing spell-checking through abstraction of popular

Added to portage

2026-02-14

syndication - 6.23.0
Ebuild name:

kde-frameworks/syndication-6.23.0

Description

Library for parsing RSS and Atom feeds

Added to portage

2026-02-14

syntax-highlighting - 6.23.0
Ebuild name:

kde-frameworks/syntax-highlighting-6.23.0

Description

Framework for syntax highlighting

Added to portage

2026-02-14

threadweaver - 6.23.0
Ebuild name:

kde-frameworks/threadweaver-6.23.0

Description

Framework for managing threads using job and queue-based interfa

Added to portage

2026-02-14

tomcat-native - 2.0.13
Ebuild name:

dev-java/tomcat-native-2.0.13

Description

Allows Tomcat to use certain native resources for better performance

Added to portage

2026-02-14

transformers - 4.57.6
Ebuild name:

sci-ml/transformers-4.57.6

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2026-02-14

typer - 0.23.1
Ebuild name:

dev-python/typer-0.23.1

Description

Build great CLIs. Easy to code. Based on Python type hints

Added to portage

2026-02-14

vanilla-kernel - 6.12.71
Ebuild name:

sys-kernel/vanilla-kernel-6.12.71

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-14

wine-mono - 11.0.0
Ebuild name:

app-emulation/wine-mono-11.0.0

Description

Replacement for the .NET runtime and class libraries in Wine

Added to portage

2026-02-14

x264 - 0.0.20240513-r1
Ebuild name:

media-libs/x264-0.0.20240513-r1

Description

Free library for encoding X264/AVC streams

Added to portage

2026-02-14

x264-encoder - 0.0.20240513-r1
Ebuild name:

media-video/x264-encoder-0.0.20240513-r1

Description

A free commandline encoder for X264/AVC streams

Added to portage

2026-02-14

xarray - 2026.2.0
Ebuild name:

dev-python/xarray-2026.2.0

Description

N-D labeled arrays and datasets in Python

Added to portage

2026-02-14

yaml-cpp - 0.9.0-r1
Ebuild name:

dev-cpp/yaml-cpp-0.9.0-r1

Description

YAML parser and emitter in C++

Added to portage

2026-02-14

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 56.5 ms